Curly brace

Multipurpose shell syntax. More information: https://www.gnu.org/software/bash/manual/bash.html#index-hash.

echo ${HOME}work

echo {1..3} {a..c}{dir1,dir2,dir3}

echo ${variable:+variable is set and contains $variable}

echo ${variable:-default}

echo ${#variable}

echo ${variable:3:7}

echo ${!variable}

echo ${variable^^}